-
Notifications
You must be signed in to change notification settings - Fork 2
External dependencies management #6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
External dependencies management #6
Conversation
.github/workflows/osx.yml
Outdated
- name: Install external dependencies | ||
run: micromamba install -n build_env -y -f ./environment-dev.yml | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same.
.github/workflows/windows.yml
Outdated
- name: Install external dependencies | ||
run: micromamba install -n build_env -y -f ./environment-dev.yml | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same.
- name: Build sparrow-ipc | ||
run: | | ||
cmake -B build/ -G Ninja \ | ||
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }} \ | ||
-DCMAKE_INSTALL_PREFIX=$CONDA_PREFIX \ | ||
-DCMAKE_PREFIX_PATH=$CONDA_PREFIX \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why remove this?
e6a69d9
to
1bf99a7
Compare
1a0719f
to
f9d53a8
Compare
.github/workflows/linux.yml
Outdated
- name: Install external dependencies | ||
run: micromamba install -n build_env -y -f ./environment-dev.yml |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a leftover and can be removed actually, redundant with:
- name: Create build environment
uses: mamba-org/setup-micromamba@v2
with:
environment-file: ./environment-dev.yml
.github/workflows/osx.yml
Outdated
build_osx: | ||
runs-on: macos-latest | ||
osx_build_from_conda_forge: | ||
runs-on: macos-15 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there an issue with macos-latest?
.github/workflows/linux.yml
Outdated
-DCMAKE_PREFIX_PATH=%CONDA_PREFIX% \ | ||
-DSPARROW_IPC_BUILD_SHARED=${{ matrix.build_shared }} \ | ||
-DSPARROW_IPC_BUILD_TESTS=ON \ | ||
-DFETCH_DEPENDENCIES_WITH_CMAKE=MISSING |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This ( -DFETCH_DEPENDENCIES_WITH_CMAKE=MISSING
) can be removed to be consistent with the other platforms workflows on conda-forge.
No description provided.